home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 May / Chip Mayıs 2001.iso / prog / share / 07 / ASPFusion / data1.cab / Admin_Pages / Admin / dsp_changepassword.asp < prev    next >
Encoding:
Text File  |  2001-03-25  |  3.8 KB  |  88 lines

  1. <%
  2. on error resume next
  3. dim SecurityBox
  4. if (Session("Index") <> "Index") then
  5.     Response.Redirect "index.asp"
  6. else
  7.     set SecurityBox = Server.CreateObject("AdvFusionBox.FusionBox")
  8. end if
  9. %>
  10. <!--- #include file = "index.js" --->
  11. <html>
  12. <head>
  13. <title>ASPFusion Security Box Administration</title>
  14. </head>
  15. <body bgcolor="#CAE4FF">
  16. <form action="act_changepassword.asp" Method="POST" NAME="changepasswordform" Onload="return focusit(document.changepasswordform.OldPassword);">
  17. <div align="right">
  18. <table width="70%" align="left">
  19.   <tr width="100%" align="right">
  20.     <td><a href="javascript:submit(document.changepasswordform, document.changepasswordform.Logout, 'Logout')" onmouseover="window.status='Logout'; return true" onmouseout="window.status='';return true"><font color="#4D82D2" face="arial, helvetica, sans-serif" size="1">Logout</font></a></td>
  21.   </tr>
  22.   <tr width="100%" align="right">
  23.     <td><a href="dsp_registration.asp" onmouseover="window.status='Registration'; return true" onmouseout="window.status='';return true"><font color="#4D82D2" face="arial, helvetica, sans-serif" size="1">Registration</font></a></td>
  24.   </tr>
  25.   <tr width="100%" align="right">
  26.     <td><a href="dsp_default.asp" onmouseover="window.status='Default'; return true" onmouseout="window.status='';return true"><font color="#4D82D2" face="arial, helvetica, sans-serif" size="1">Default</font></a></td>
  27.   </tr>
  28.   <tr width="100%" align="right">
  29.     <td><a href="dsp_websitesecurity.asp" onmouseover="window.status='Web Site Security'; return true" onmouseout="window.status='';return true"><font color="#4D82D2" face="arial, helvetica, sans-serif" size="1">Web Site Security</font></a></td>
  30.   </tr>
  31.   <tr width="100%" align="right">
  32.     <td><a href="dsp_welcome.asp" onmouseover="window.status='<< Back'; return true" onmouseout="window.status='';return true"><font color="#4D82D2" face="arial, helvetica, sans-serif" size="1"><< Back</font></a></td>
  33.   </tr>
  34. </table>
  35.   <table cellpadding="0" cellspacing="1" width="25%">
  36.     <tr width="100%" align="right">
  37.       <td><img src="Images/aspfusion.gif"></td>
  38.     </tr>
  39.   </table>
  40. </div>
  41. <br>
  42. <table cellpadding="0" width="100%">
  43. <input type="hidden" value="" name="Logout">
  44. <input type="hidden" value="" name="Change">
  45.   <tr>
  46.     <td colspan="2"><br>
  47.      <%if Request.QueryString("result") = "0" then%>
  48.         <p align="left"><font color="#FF0000" face="Arial" size="2"><b><%=Session("Error")%></b></p>
  49.      <%else%>
  50.         <p> </p>
  51.      <%end if%>
  52.     </td>
  53.   </tr>
  54.   <tr>
  55.      <td colspan="2">
  56.        <font face="Arial" size="2" color="#9D9D9D">ASPFusion Administrator password can be changed from here.</font>
  57.      </td>
  58.   </tr>
  59.   <tr>
  60.     <td width="30%" align="left"><br><font size="2" face="Arial">Old Password</font></td>
  61.     <td width="70%"><br><input type="password" name="OldPassword" size="20"></td>
  62.   </tr>
  63.   <tr>
  64.     <td width="30%" align="left"><font size="2" face="Arial">New Password</font></td>
  65.     <td width="70%"><input type="password" name="NewPassword" size="20"></td>
  66.   </tr>
  67.   <tr>
  68.     <td width="30%" align="left"><font size="2" face="Arial">Confirm New Password</font></td>
  69.     <td width="70%"><input type="password" name="ConfirmNewPassword" size="20"></td>
  70.   </tr>
  71. </table>
  72. <br>
  73. <table cellpadding="0" cellspacing="1" width="25%">
  74.   <tr width="100%" align="left">
  75.     <td><a href="javascript:submit(document.changepasswordform, document.changepasswordform.Change, 'Change')" onclick="return changepassword_checkit();" onmouseover="window.status='Change'; return true" onmouseout="window.status='';return true"><img src="Images/change.gif" border="0"></a></td>
  76.   </tr>
  77. </table>
  78. <table align="center" width="100%">
  79.   <tr>
  80.     <td align="center" valign="bottom">
  81.       <font face="Arial" color="black" size="1">Copyright ⌐ 2000, Advanced Communications</font>
  82.     </td>
  83.   </tr>
  84. </table>
  85. </form>
  86. </body>
  87. </html>
  88.